Using Calendar
Instead of this
Date d = new Date(year, month, day);
Do this
Calendar cal = Calendar.getInstance();  
cal.set(year, month, day);
Date d = cal.getTime();

Return to Tracks